body {
  background: #f4f6fb;
}

/*轮播图*/
.index-banner {
  overflow: hidden;
}

.index-banner .index-banner-list {
  max-height: 680px;
  overflow: hidden;
}

.index-banner .index-banner-list .banner-list {
  max-height: 680px;
}

.index-banner .index-banner-list video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.index-banner .banner-video {
  width: 100%;
  margin-top: -115px;
  left: 50%;
  margin-left: -50%;
  position: relative;
}
.index-banner .index-banner-list .banner-list .swiper-slide .swiper-img {
  /*padding-bottom: 31.25%;*/
  position: relative;
  width: 100%;
  height: 680px;
}
.index-banner .index-banner-list .banner-list .swiper-slide .swiper-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-banner .index-banner-list .banner-list .swiper-slide {
  height: 680px;
  overflow: hidden;
}

.index-banner .banner-info {
  position: absolute;
  left: 0;
  right: 0;
  /*top: 40px;*/
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1200px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  color: #fff;
  z-index: 3;
}

/**swiper-pagination */
.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 110px;
  left: calc((100% - 1200px) / 2);
}

.index-banner .banner-info .title {
  width: 532px;
  max-height: 100px;
  -webkit-line-clamp: 2;
  font-weight: 500;
  font-size: 36px;
  line-height: 50px;
  margin-bottom: 16px;
}

.index-banner .swiper-pagination-bullet {
  cursor: pointer;
  width: 40px;
  height: 10px;
  margin: 0 10px;
  border-radius: 0;
  position: relative;
  display: inline-block;
  overflow: hidden;
}

/**添加分页条动画*/
.index-banner .swiper-pagination-bullet:before {
  content: "";
  width: 40px;
  height: 4px;
  background: hsla(0, 0%, 40%, 0.5);
  position: absolute;
  left: 0;
  bottom: 3px;
}

.index-banner .swiper-pagination-bullet:after {
  content: "";
  width: 40px;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: 3px;
}

.index-banner .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  left: -100%;
  background: rgba(114, 164, 255, 1);
  -webkit-animation: mymove 6s 1;
  animation: mymove 6s 1;
  -webkit-animation-play-state: running;
  animation-play-state: running;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.index-banner
  .swiper-pagination-bullet.swiper-pagination-bullet-active:hover:after {
  background: #fff;
}

.index-banner .swiper-paused .swiper-pagination-bullet-active:after {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

@-webkit-keyframes mymove {
  0% {
    left: -100%;
  }

  to {
    left: 0;
  }
}

@keyframes mymove {
  0% {
    left: -100%;
  }

  to {
    left: 0;
  }
}

.index-banner .banner-info .intro {
  width: 500px;
  max-height: 52px;
  -webkit-line-clamp: 2;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 48px;
}

.index-banner .banner-info .link {
  overflow: hidden;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 16px;
}

.index-banner .link .link-btn {
  padding: 4px 32px;
  display: inline-block;
  margin-right: 16px;
  cursor: pointer;
}

.index-banner .link .link-btn:last-child {
  /* margin-right: 0; */
}

.index-banner .link .btn-blue {
  color: #ffffff;
  background: #4385ff;
  border-radius: 4px;
  border: 1px solid #4385ff;
}

.index-banner .link .btn-grey {
  color: #ffffff;
  border-radius: 4px;
  border: 1px solid #ffffff;
}

.index-banner .banner-info.banner-info-center {
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.index-banner .banner-info.banner-info-center .title,
.index-banner .banner-info.banner-info-center .intro {
  text-align: center;
}
/**动态效果 */
@-webkit-keyframes dhs {
  from {
    opacity: 0;
    -webkit-transform: translate(0, 40px);
    transform: translate(0, 40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@-moz-keyframes dhs {
  from {
    opacity: 0;
    -moz-transform: translate(0, 40px);
    transform: translate(0, 40px);
  }
  to {
    opacity: 1;
    -moz-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@-o-keyframes dhs {
  from {
    opacity: 0;
    -o-transform: translate(0, 40px);
    transform: translate(0, 40px);
  }
  to {
    opacity: 1;
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes dhs {
  from {
    opacity: 0;
    -webkit-transform: translate(0, 40px);
    -moz-transform: translate(0, 40px);
    -o-transform: translate(0, 40px);
    transform: translate(0, 40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

/*首页大图模块*/
.home-image {
  width: 100%;
  height: 1083px;
  box-sizing: border-box;
  background: white;
  text-align: center;
  padding: 144px 0 80px 0;
  margin-top: -64px;
}

.home-image .content .title {
  color: #262626;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 42px;
}

.home-image .content .intro {
  margin-top: 16px;
  color: #595959;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  opacity: 0.6632;
}
.home-image .img {
  width: 1200px;
  height: 657px;
  margin: 0 auto;
  margin-top: 32px;
}

.home-image .button {
  display: inline-block;
  position: relative;
  padding: 7px 32px;
  justify-content: flex-end;
  align-items: center;
  border-radius: 32px;
  border: 1px solid #3d2674;
  background: #25222b;
  margin-top: 40px;
}
.home-image .button:hover {
  background: #3d3945;
}

.home-image .button span {
  display: inline-block;
  background: linear-gradient(90deg, #e9baff 0%, #bccaff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}

.home-image .button .link {
  width: 6px;
  height: 6px;
  right: 18px;
  border-left: 2px solid #e9bbff;
  border-bottom: 2px solid #e9bbff;
  border-radius: 2px;
}

/*轮播图下三栏广告*/
.index-ad {
  width: 1180px;
  margin: 0 auto;
  position: relative;
}

.index-ad ul {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 99;
}
.index-ad ul li {
  width: 371px;
  margin-right: 32px;
}
.index-ad ul li .card {
  box-sizing: border-box;
  width: 372px;
  height: 128px;
  overflow: hidden;
  background: #fff;
  border-radius: 8px;
  margin-top: -64px;
  padding: 24px 20px 24px 20px;
  box-shadow: 4px 6px 16px 0px rgba(9, 67, 135, 0.2);
  /* 与宽度关联 */
  /*padding: 0 37px 20px 31px;*/
  position: relative;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
}

.index-ad ul li:last-child {
  margin-right: 0;
}

.index-ad li .img img {
  width: 56px;
  height: 56px;
}

.index-ad li .img {
  width: 56px;
  height: 56px;
}
.index-ad li .content {
  margin-left: 8px;
}
.index-ad li .content .label-img {
  display: inline-block;
  position: relative;
  width: 32px;
  height: 28px;
}
.index-ad li .content .label-img img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.index-ad li .title {
  display: inline-block;
  max-width: 230px;
  height: 28px;
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  color: #262626;
  -webkit-line-clamp: 1;
}

.index-ad li .intro {
  width: 268px;
  height: 20px;
  margin-top: 4px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #595959;
  -webkit-line-clamp: 1;
}

.index-ad li .download {
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  /* overflow: hidden; */
  /* 三角符号 */
  position: relative;
  margin-top: 8px;
}

.index-ad .download .name {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #4385ff;
  display: inline-block;
}

.index-ad .download .link {
  width: 6px;
  height: 6px;
  border-left: 2px solid #4385ff;
  border-bottom: 2px solid #4385ff;
  border-radius: 2px;
  left: 60px;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

/**动态效果 */
.index-ad ul li .card {
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

.index-ad ul li .card:hover {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
  -o-transform: translateY(-8px);
  transform: translateY(-8px);
  -o-transition: 0.2s;
  -moz-transition: 0.2s;
  transition: 0.2s;
  -webkit-transition: 0.2s;
}

/*全场景产品矩阵*/
.index-product {
  width: 1234px;
  margin: 80px auto 0;
  padding-bottom: 100px;
}

.index-product > .title {
  width: 590px;
  font-weight: 400;
  font-size: 32px;
  line-height: 42px;
  color: #262626;
  overflow: hidden;
  text-align: center;
  margin: 0 auto 16px;
}

.index-product > .intro {
  width: 590px;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
  color: #595959;
  margin: 0 auto 64px;
  opacity: 0.6632;
}

.index-product > .main-info {
  width: 1200px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: stretch;
  -moz-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.index-product > .main-info > .list {
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.index-product .list .item {
  height: 252px;
  width: 244px;
  box-sizing: border-box;
  margin-right: 16px;
  padding: 24px 16px 32px 16px;
  background: #ffffff;
  border-radius: 4px;
  position: relative;
  cursor: default;
}

.index-product .list .item:first-child {
  margin-bottom: 24px;
}

.index-product .item .header {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  padding-bottom: 16px;
}

.index-product .item .header .img {
  width: 40px;
  height: 40px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.index-product .item .header .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.index-product .item .title .name {
  position: relative;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  color: #262626;
  overflow: hidden;
  display: inline-block;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  z-index: 1;
}

.index-product .item .title .name::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 30%;
  background: rgb(202, 221, 255);
  z-index: -1;
}

.index-product .item .info {
  overflow: hidden;
}

.index-product .info .subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #262626;
  margin-top: 12px;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.index-product .info .intro {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #595959;
  overflow: hidden;
  margin-top: 4px;
  -webkit-line-clamp: 3;
}

.index-product .info .btns {
  display: none;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  overflow: hidden;
  position: absolute;
  left: 16px;
  right: 16px;
  margin: auto;
  bottom: 25px;
}

.index-product .info .btns .btn {
  display: inline-block;
  width: 101px;
  padding: 10px 8px;
  border-radius: 4px;
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}

.index-product .info .btns .btn-blue {
  margin-right: 16px;
  background-color: #4385ff;
  color: #ffffff;
  border: 1px solid #4385ff;
}

.index-product .info .btns .btn-grey {
  border: 1px solid #d9d9d9;
  color: #595959;
}

.index-product .info .btns a:nth-child(1) {
  margin-right: 16px;
}

.index-product .info .btns .btn:last-child {
  margin-right: 0;
}

/* 激活状态 */
.index-product > .main-info > .more-product {
  width: 160px;
  box-sizing: border-box;
  overflow: hidden;
  background: #ffffff url("../../images/index/img_product_bg.png") bottom right
    no-repeat;
  -o-background-size: 82px 106px;
  background-size: 82px 106px;
  padding: 32px 24px;
}

.index-product .more-product .name {
  font-weight: 500;
  font-size: 22px;
  line-height: 32px;
  color: #262626;
  overflow: hidden;
  margin-bottom: 32px;
}

.index-product .more-product ul {
  position: relative;
}

.index-product .more-product ul li {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  margin-bottom: 32px;
}

.index-product .more-product ul li .img {
  width: 20px;
  display: block;
}

.index-product .more-product ul li a.intro {
  /*width: 80px;*/
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #262626;
  padding-left: 8px;
}

/*  动效   */
.index-product > .main-info .item {
  box-shadow: none;
}

.index-product > .main-info .item {
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

.index-product > .main-info .item:hover {
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition: 0.5s;

  box-shadow: 0 3px 6px -4px rgba(0, 61, 87, 0.12),
    0 6px 16px rgba(5, 53, 130, 0.08), 0 9px 28px 8px rgba(0, 45, 112, 0.05);
}

.index-product > .main-info .item .header,
.index-product > .main-info .item .intro {
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

.index-product > .main-info .item .subtitle {
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

.index-product > .main-info .item:hover .subtitle {
  color: #262626;
  font-weight: 400;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

.index-product > .main-info .item .intro {
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

.index-product > .main-info .item:hover .intro {
  display: none;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

.index-product > .main-info .item .btns {
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

.index-product > .main-info .item:hover .btns {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

.index-product .more-product ul li {
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

.index-product .more-product ul li:hover {
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition: 0.5s;

  -webkit-transform: translateY(-4px);

  -moz-transform: translateY(-4px);

  -ms-transform: translateY(-4px);

  -o-transform: translateY(-4px);

  transform: translateY(-4px);
}

/*全周期客户联络解决方案*/
.index-user-contact {
  width: auto;
  overflow: hidden;
  /*background-image: url("../../images/index/img_user_contact_bg.png");*/
  background-color: #ffffff;
  background-position: top left;
  background-repeat: no-repeat;
  -o-background-size: cover !important;
  background-size: cover !important;
}

.index-user-contact .index-contact-main {
  width: 1280px;
  padding: 80px 0;
  margin: 0 auto;
  overflow: hidden;
}

.index-user-contact .index-contact-main > .title {
  width: 590px;
  font-weight: 500;
  font-size: 32px;
  line-height: 42px;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
  margin: 0 auto 16px;
}

.index-user-contact .index-contact-main > .subtitle {
  width: 590px;
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  opacity: 0.6;
  overflow: hidden;
  margin: 16px auto 64px;
}

.index-user-contact .index-contact-main > .content {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: stretch;
  -moz-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.15);
}

.index-user-contact .content .list {
  width: 246px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  padding: 20px 0 0;
  overflow: hidden;
}

.index-user-contact .content .list-main {
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: hidden;
}

.index-user-contact .content .list-main .list-detail {
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: none;
  overflow: hidden;
}

.index-user-contact .content .list-main .list-detail.active {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.index-user-contact .list li {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  padding: 10px 50px;
  color: #ffffff;
  position: relative;
  cursor: default;
}

.index-user-contact .list-info {
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 32px 70px 48px 50px;
  overflow: hidden;
}

.index-user-contact .list-info .name {
  font-weight: 500;
  font-size: 22px;
  line-height: 32px;
  color: #ffffff;
  overflow: hidden;
  margin-bottom: 24px;
}

.index-user-contact .list-info .subname {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.7);
  height: 80px;
  overflow: hidden;
}

.index-user-contact .list-info .list-info-nav {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /*justify-content: space-between;*/
  overflow: hidden;
  padding: 55px 0 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.index-user-contact .list-info-nav li {
  -webkit-flex: 0 0 127px;
  -moz-box-flex: 0;
  -ms-flex: 0 0 127px;
  flex: 0 0 127px;
  margin-right: 45px;
  /* overflow: hidden; */
}

.index-user-contact .list-info-nav li:last-child {
  margin-right: 0;
}

.index-user-contact .list-info-nav li .img {
  width: 32px;
  margin: 0 auto 12px;
  display: block;
}

.index-user-contact .list-info-nav li p {
  font-weight: 400;
  font-size: 12px;
  line-height: 17px;
  color: rgba(255, 255, 255, 0.5);
  overflow: hidden;
  text-align: center;
}

.index-user-contact .list-info .btns {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  margin-top: 32px;
}

.index-user-contact .list-info .btn {
  /*width: 92px;*/
  padding: 8px 13px;
  border-radius: 4px;
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}

.index-user-contact .list-info .btn-green {
  margin-right: 32px;
  background-color: #29bf74;
  color: #ffffff;
  border: 1px solid #29bf74;
}

.index-user-contact .list-info .btn-white {
  border: 1px solid #ffffff;
  color: #ffffff;
}

.index-user-contact .list-info .btn:last-child {
  margin-right: 0;
}

.index-user-contact .content .about-info {
  width: 236px;
  overflow: hidden;
  margin-right: 34px;
}

.index-user-contact .about-info .name {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 1px;
  overflow: hidden;
  color: #ffffff;
  margin: 20px auto 21px;
}

.index-user-contact .about-info .about-list {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  overflow: hidden;
}

.index-user-contact .about-list li {
  width: 110px;
  height: 108px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  margin: 0 16px 16px 0;
  overflow: hidden;
}

.index-user-contact .about-list li a {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.index-user-contact .about-list li:nth-child(2n) {
  margin-right: 0;
}

.index-user-contact .about-list li .img {
  width: 36px;
  height: 36px;
  display: block;
}

.index-user-contact .about-list li a.intro {
  padding-top: 2px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.7);
  overflow: hidden;
}

.index-user-contact .index-contact-main .index-concat-footer {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 64px;
}

.index-user-contact .index-contact-main .index-concat-intro {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #ffffff;
  overflow: hidden;
  margin: 0 auto;
  display: inline-block;
  padding: 12.5px 63px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 4px;
}

.index-user-contact .content .list-info .img {
  width: 32px;
  display: block;
}

/**激活状态 */
.index-user-contact .list li.active {
  background: rgba(255, 255, 255, 0.15);
}

.index-user-contact .list li.active::after {
  content: "";
  display: block;
  width: 3px;
  height: 100%;
  background: #2bce7c;
  position: absolute;
  left: 0;
  top: 0;
}

/**动态效果 */
.index-user-contact .list li:hover {
  background: rgba(255, 255, 255, 0.15);
}

.index-user-contact .list li::after {
  content: "";
  display: block;
  width: 3px;
  height: 0;
  background: #2bce7c;
  position: absolute;
  left: 0;
  top: 50%;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

.index-user-contact .list li:hover::after {
  height: 100%;
}

/**动效 */
.index-user-contact .list-info-nav li .img {
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

.index-user-contact .list-info-nav li:hover .img {
  /* padding-top: 10px; */
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -ms-transform: scale(1.5);
  -o-transform: scale(1.5);
  transform: scale(1.5);
}

/**相关产品-翻转 */
.index-user-contact .about-list li .img img {
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

.index-user-contact .about-list li:hover .img img {
  /*transition: 0.5s;*/
  /*-webkit-transition: 0.5s;*/
  /*transform: rotateY(180deg);*/
}

.index-user-contact .about-list li {
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

.index-user-contact .about-list li:hover {
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  background: rgba(0, 0, 0, 0.4);
}

.index-user-contact .about-list li:hover p {
  color: rgba(255, 255, 255, 1);
}

/*行业解决方案*/
.index-industry {
  width: 1236px;
  margin: 80px auto 0;
  position: relative;
  padding-bottom: 80px;
}

.index-industry .title {
  width: 590px;
  font-weight: 400;
  font-size: 32px;
  line-height: 42px;
  color: #262626;
  margin: 0 auto 16px;
  text-align: center;
}

.index-industry .intro {
  width: 590px;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #595959;
  margin: 0 auto 64px;
  opacity: 0.6632;
}

.index-industry .list {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.index-industry .list .item {
  width: 228px;
  height: 284px;
  box-sizing: border-box;
  overflow: hidden;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 30px 8px 0 14px;
  margin: 0 14px 24px 0;
  position: relative;
}

.index-industry .list .item:nth-child(5n) {
  margin-right: 0;
}

.index-industry .item .header {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  /*margin-bottom: 3px;*/
}

.index-industry .header a.img {
  width: 32px;
  height: 32px;
  display: block;
}

.index-industry .header a.img img {
  width: 100%;
  height: 100%;
}

.index-industry .header a.intro-name {
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  color: #262626;
  overflow: hidden;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 16px;
}

.index-industry .item ul {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 24px;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}

.index-industry .item ul li {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  margin-top: 16px;
}
.index-industry .item ul li:first-child {
  margin-top: 0px;
}

.index-industry .item ul li span {
  display: block;
  width: 13px;
  height: 9px;
  margin-right: 8px;
  margin-top: 4px;
}

.index-industry .item ul li p {
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #6f6f6f;
  overflow: hidden;
}

.index-industry .item .look-info {
  display: none;
  overflow: hidden;
  /* position: relative; */
}

.index-industry .look-info .subintro {
  width: 188px;
  margin-top: 42px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #6f6f6f;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  word-wrap: break-word;
  word-break: break-all;
}

.index-industry .look-info .look-detail {
  position: absolute;
  left: 16px;
  bottom: 60px;
  display: inline-block;
}

.index-industry .look-detail .name {
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
  color: #4385ff;
  display: block;
}

.index-industry .look-detail .link {
  width: 6px;
  height: 6px;
  right: -16px;
  border-left: 2px solid #4385ff;
  border-bottom: 2px solid #4385ff;
  border-radius: 2px;
}

.index-industry .white-btn {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 40px;
}

.index-industry .white-btn a.btn-grey {
  display: inline-block;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #595959;
  padding: 12px 40px;
  overflow: hidden;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
}

/**动态效果 */
.index-industry .item {
  width: 0;
  box-shadow: none;
}

.index-industry .item:hover {
  box-shadow: 6px 6px 15px rgba(48, 69, 58, 0.18);
  background: url("../../images/index/icon_industry_bg.png") no-repeat bottom
    right;
  background-color: white;
}

.index-industry .item .look-info {
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

.index-industry .item:hover .look-info {
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

.index-industry .item:hover .look-info {
  display: block;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

.index-industry .item ul {
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

.index-industry .item:hover ul {
  display: none;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

.index-industry .list .item:hover::after {
  content: "";
  width: 75px;
  height: 3px;
  display: block;
  background: #4385ff;
  position: absolute;
  top: 0;
  left: 14px;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

/*客户证言*/
.index-customer {
  margin: 0 auto;
  min-height: 640px;
  /*background: #4277ff url("../../images/index/img_index_customer.png") no-repeat top left;*/
  -o-background-size: cover !important;
  background-size: cover !important;
  padding-bottom: 160px;
  position: relative;
  overflow: hidden;
}

.index-customer .index-customer-main {
  width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.index-customer .index-customer-main .title {
  width: 590px;
  font-weight: 400;
  font-size: 32px;
  line-height: 42px;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  margin: 80px auto 40px;
}
.index-customer .index-customer-main .intro {
  width: 590px;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #ffffff;
  margin: 0 auto 92px;
}
.index-customer .index-customer-main .info {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  width: 100%;
}

.index-customer .info .nav {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  cursor: default;
  width: 344px;
  height: 509px;
  background: url(../../images/index/cggs.png) no-repeat;
  background-size: cover;
  border-radius: 0px 8px 8px 0px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: flex-start;
  padding: 40px;
  box-sizing: border-box;
  margin: 0 auto;
}

.index-customer .nav li {
  float: left;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  font-weight: 500;
  font-size: 16px;
  line-height: 50px;
  color: #ffffff;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  width: 120px;
  height: 50px;
  margin-top: 32px;
}
.index-customer .nav li:nth-child(1) {
  margin-top: 0px;
}
.index-customer .nav li:nth-child(2) {
  margin-top: 0px;
}
.index-customer .nav li span {
  /*padding: 16px 0;*/
  width: 100%;
  position: relative;
  display: inline-block;
  text-align: center;
}

.index-customer .nav-list {
  /* margin: 64px 48px 0;
    overflow: hidden;
    position: relative;*/
  overflow: hidden;
  position: relative;
  background: #ffffff;
  border-radius: 8px 0px 0px 8px;
  width: 856px;
  height: 509px;
  float: left;
}
.index-customer .nav-list .quote {
  overflow: hidden;
  position: absolute;
  width: 51px;
  height: 41px;
  background: url("../../images/index/quote.png");
  top: 69px;
  bottom: auto;
  left: auto;
  right: 56px;
}
.index-customer .nav-item {
  /*    color: #ffffff;*/
  /*text-shadow: 0 0 4px rgba(0, 0, 0, 0.3);*/
  line-height: 34px;
  overflow: hidden;
  position: relative;
  display: none;
  height: 100%;
  width: 100%;
}

.index-customer .nav-item.active,
.index-customer .nav-item.active:hover {
  display: block;
}

.index-customer .nav-item .img {
  /* width: 92px;
    height: 46px;*/
  width: 184px;
  height: 92px;
  display: block;
  overflow: hidden;
  margin-top: 58px;
  margin-left: 49px;
}

.index-customer .nav-item .img img {
  width: auto;
  height: 100%;
}

.index-customer .nav-item .name {
  width: 744px;
  height: 36px;
  line-height: 36px;
  font-weight: 500;
  font-size: 24px;
  /*margin: 74px auto 0;*/
  margin: 33px auto 0;
  overflow: hidden;
  color: #262626;
  text-align: left;
}

.index-customer .nav-item .intro {
  width: 744px;
  height: 150px;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  margin: 16px auto 0px;
  overflow: hidden;
  color: #595959;
  text-align: left;
}

.index-customer .nav-item .link {
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #595959;
  border: 1px solid #8c8c8c;
  border-radius: 4px;
  display: inline-block;
  width: 110px;
  height: 40px;
  line-height: 40px;
  margin-left: 49px;
  margin-top: 33px;
}

/**激活效果 */
.index-customer .nav .active {
  /*font-weight: 600;*/

  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

/*.index-customer .nav .active span::after {
    content: "";
    width: 100%;
    height: 3px;
    display: block;
    background: #4385ff;
    position: absolute;
    bottom: 0;
    left: 0;
}*/

/**动态效果 */
.index-customer .nav li:hover {
  /*font-weight: 600;*/

  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

/*.index-customer .nav li span::after {
    content: "";
    width: 0;
    height: 3px;
    display: block;
    background: #4385ff;
    position: absolute;
    bottom: 0;
    !* left: 50%; *!
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    z-index: 99;
}

.index-customer .nav li:hover span::after {
    width: 100%;
}*/

.index-customer .nav-item .img img {
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

/*.index-customer .nav-item .img img:hover {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition: 0.5s;
}*/

/*logo墙*/
.index-logowall {
  width: 100%;
  background: #ffffff;
  position: relative;
  padding-bottom: 80px;
}

.index-logowall .title {
  width: 590px;
  text-align: center;
  margin: 0 auto 64px;
  overflow: hidden;
  font-weight: 400;
  font-size: 32px;
  line-height: 42px;
  color: #262626;
  padding: 80px 0 0;
}

.index-logowall .logowall-list::before {
  content: "";
  width: 518px;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  /*background: linear-gradient(*/
  /*        90deg,*/
  /*        #ffffff 0%,*/
  /*        #ffffff 28.83%,*/
  /*        rgba(255, 255, 255, 0.1) 100%*/
  /*);*/
  background: -webkit-linear-gradient(
    left,
    #ffffff 30%,
    #ffffff 10%,
    rgba(255, 255, 255, 0) 70%
  );
  background: -moz-linear-gradient(
    left,
    #ffffff 30%,
    #ffffff 10%,
    rgba(255, 255, 255, 0) 70%
  );
  background: -o-linear-gradient(
    left,
    #ffffff 30%,
    #ffffff 10%,
    rgba(255, 255, 255, 0) 70%
  );
  background: linear-gradient(
    90deg,
    #ffffff 30%,
    #ffffff 10%,
    rgba(255, 255, 255, 0) 70%
  );
  z-index: 2;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

.index-logowall .logowall-list::after {
  content: "";
  width: 518px;
  height: 100%;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  /*background: linear-gradient(*/
  /*        270deg,*/
  /*        #ffffff 0%,*/
  /*        #ffffff 28.83%,*/
  /*        rgba(255, 255, 255, 0.1) 100%*/
  /*);*/
  background: -webkit-linear-gradient(
    right,
    #ffffff 30%,
    #ffffff 10%,
    rgba(255, 255, 255, 0) 70%
  );
  background: -moz-linear-gradient(
    right,
    #ffffff 30%,
    #ffffff 10%,
    rgba(255, 255, 255, 0) 70%
  );
  background: -o-linear-gradient(
    right,
    #ffffff 30%,
    #ffffff 10%,
    rgba(255, 255, 255, 0) 70%
  );
  background: -webkit-linear-gradient(
    right,
    #ffffff 30%,
    #ffffff 10%,
    rgba(255, 255, 255, 0) 70%
  );
  background: -moz-linear-gradient(
    right,
    #ffffff 30%,
    #ffffff 10%,
    rgba(255, 255, 255, 0) 70%
  );
  background: -o-linear-gradient(
    right,
    #ffffff 30%,
    #ffffff 10%,
    rgba(255, 255, 255, 0) 70%
  );
  background: linear-gradient(
    270deg,
    #ffffff 30%,
    #ffffff 10%,
    rgba(255, 255, 255, 0) 70%
  );
  z-index: 1;
}

.index-logowall .index-logowall-list {
  margin-top: -8px;
}

.index-logowall .index-logowall-list .swiper-slide {
  /*width: 1200px !important;*/
}

.index-logowall .index-logowall-list .swiper-slide img {
  width: 100%;
  height: auto;
  cursor: pointer;
}

/* .index-logowall .index-logowall-list .swiper-slide-active{
    width: 1200px !important;
} */
.index-logowall .index-logowall-list p {
  width: 100%;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  overflow: hidden;
}

.index-logowall .index-logowall-list p span {
  width: 143px;
  height: 98px;
  display: inline-block;
  overflow: hidden;
  margin: 8px 8px 0 0;
}

.index-logowall .index-logowall-list p span:nth-child(8n) {
  margin-right: 0;
}

.index-logowall .logowall-list-prev,
.index-logowall .logowall-list-next {
  width: 80px;
  height: 451px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer;
  z-index: 9;
}

.index-logowall .logowall-list-prev {
  left: 46px;
}

.index-logowall .logowall-list-next {
  right: 46px;
}

.index-logowall .logowall-list-prev::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-left: 2px solid #b0b0b0;
  border-bottom: 2px solid #b0b0b0;
  border-radius: 2px;
  -webkit-transform: translate(0, 0) rotate(45deg);
  -moz-transform: translate(0, 0) rotate(45deg);
  -ms-transform: translate(0, 0) rotate(45deg);
  -o-transform: translate(0, 0) rotate(45deg);
  transform: translate(0, 0) rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
}

.index-logowall .logowall-list-next::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-left: 2px solid #b0b0b0;
  border-bottom: 2px solid #b0b0b0;
  border-radius: 2px;
  -webkit-transform: translate(0, 0) rotate(-135deg);
  -moz-transform: translate(0, 0) rotate(-135deg);
  -ms-transform: translate(0, 0) rotate(-135deg);
  -o-transform: translate(0, 0) rotate(-135deg);
  transform: translate(0, 0) rotate(-135deg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
}

/*新闻资讯*/
.index-news {
  width: 100%;
  height: 442px;
  position: relative;
  background: -webkit-linear-gradient(131.67deg, #dbe7fa 6.5%, #ffffff 61.2%);
  background: -moz-linear-gradient(131.67deg, #dbe7fa 6.5%, #ffffff 61.2%);
  background: -o-linear-gradient(131.67deg, #dbe7fa 6.5%, #ffffff 61.2%);
  background: linear-gradient(318.33deg, #dbe7fa 6.5%, #ffffff 61.2%);
  padding: 80px 0;
}
.index-news index-news-main-box {
  width: 1192px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.index-news .index-news-main {
  width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.index-news .index-news-main .header {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  width: 1192px;
  margin: 0 auto;
}

.index-news .header::after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  position: absolute;
  left: 0;
  top: 55px;
  background: #c8d4df;
}

.index-news .header .nav {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  /* align-items: baseline; */
  overflow: hidden;
  position: relative;
}

.index-news .header .nav li {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #989898;
  margin-right: 40px;
  padding-bottom: 27px;
  cursor: pointer;
}

.index-news .header .nav li:last-child {
  margin-right: 0;
}

.index-news .header .more {
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #989898;
  cursor: pointer;
  position: relative;
}

.index-news .header .more .text {
  display: inline-block;
  padding-right: 18px;
}

.index-news .header .more .link {
  width: 7px;
  height: 7px;
  right: 5px;
  top: 4px;
}

.index-news .index-news-main .list {
  margin: 40px 0 0;
}

.index-news .index-news-main .list .item {
  display: none;
}

.index-news .index-news-main .list .show {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.index-news .list .list-brand {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  overflow: hidden;
  width: 1192px;
  margin: 0 auto;
}

.index-news .list-brand .brand-info {
  width: 400px;
  overflow: hidden;
}

.index-news .list-brand .brand-info .img {
  width: 400px;
  height: 217px;
  overflow: hidden;
  display: block;
}

.index-news .list-brand .brand-info > span {
  width: 400px;
  height: 220px;
  display: block;
  border-radius: 2px;
  margin-bottom: 16px;
}

.index-news .brand-info .brand-info-main {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  padding-top: 16px;
}

.index-news .brand-info .brand-info-date {
  width: 48px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
}

.index-news .brand-info .brand-info-date .day {
  font-weight: 500;
  font-size: 29px;
  line-height: 39px;
  color: #262626;
  text-align: center;
  width: 100%;
  display: block;
}

.index-news .brand-info .brand-info-date .month {
  font-weight: 500;
  font-size: 12px;
  line-height: 17px;
  color: #909090;
  width: 100%;
  text-align: center;
  padding-top: 4px;
  display: block;
}

.index-news .brand-info .brand-info-content {
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: hidden;
}

.index-news .brand-info .brand-info-content .name {
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  color: #262626;
  overflow: hidden;
  display: block;
  padding-left: 12px;
}

.index-news .brand-info .brand-info-content .intro {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #848484;
  display: block;
  padding-top: 8px;
  padding-left: 12px;
}

.index-news .list-brand .brand-list {
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  margin-top: -40px;
}

.index-news .list-brand .brand-list .brand-item {
  -webkit-flex: 0 0 340px;
  -moz-box-flex: 0;
  -ms-flex: 0 0 340px;
  flex: 0 0 340px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  /* align-items: center; */
  margin-left: 56px;
  margin-top: 40px;
  overflow: hidden;
  cursor: pointer;
}

.index-news .brand-item .brand-item-date {
  width: 48px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* justify-content: center; */
  overflow: hidden;
}

.index-news .brand-item .brand-item-date .day {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #262626;
  width: 100%;
  display: block;
  text-align: center;
}

.index-news .brand-item .brand-item-date .month {
  font-weight: 500;
  font-size: 12px;
  line-height: 17px;
  color: #909090;
  width: 100%;
  display: block;
  padding-top: 4px;
  padding-bottom: 21px;
  text-align: center;
}

.index-news .brand-item .brand-item-content {
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: hidden;
}

.index-news .brand-item .brand-item-content .name {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #262626;
  overflow: hidden;
  display: block;
  padding-left: 12px;
}

.index-news .brand-item .brand-item-content .intro {
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: #848484;
  height: 40px;
  -webkit-line-clamp: 2;
  padding-top: 8px;
  padding-left: 12px;
}

.index-news .list .list-answer {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  width: 1192px;
  margin: -40px auto 0;
}

.index-news .list-answer .answer-item {
  -webkit-flex: 0 0 376px;
  -moz-box-flex: 0;
  -ms-flex: 0 0 376px;
  flex: 0 0 376px;
  margin-right: 32px;
  margin-top: 40px;
  overflow: hidden;
}

.index-news .list-answer .answer-item:nth-child(3n) {
  margin-right: 0;
}

.index-news .list-answer .answer-item .name {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #262626;
  margin-bottom: 8px;
}

.index-news .list-answer .answer-item .intro {
  height: 36px;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #848484;
  -webkit-line-clamp: 2;
}

.index-news .list-answer .answer-item.answer-question {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
}

.index-news .answer-item.answer-question .answer-input {
  width: 268px;
  overflow: hidden;
}

.index-news .answer-item.answer-question .answer-input input {
  width: 220px;
  display: block;
  /*border: none;*/
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #8c8c8c;
  padding: 10.5px 24px;
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 4px 0 0 4px;
  outline: none;
}

.index-news .list-share {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  margin-top: -40px;
}

.index-news .list-share .share-item {
  -webkit-flex: 0 0 360px;
  -moz-box-flex: 0;
  -ms-flex: 0 0 360px;
  flex: 0 0 360px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  /* align-items: center; */
  margin-right: 60px;
  margin-top: 36px;
  overflow: hidden;
  cursor: pointer;
}
.index-news .list-share .share-item:nth-child(3n) {
  margin-right: 0;
}
.index-news .share-item .share-item-date {
  width: 48px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* justify-content: center; */
  overflow: hidden;
}

.index-news .share-item .share-item-date .day {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
  width: 100%;
  display: block;
  text-align: center;
}

.index-news .share-item .share-item-date .month {
  font-weight: 500;
  font-size: 12px;
  line-height: 17px;
  color: #909090;
  width: 100%;
  display: block;
  padding-top: 4px;
  text-align: center;
}

.index-news .share-item .share-item-content {
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: hidden;
}

.index-news .share-item .share-item-content .name {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #262626;
  overflow: hidden;
  display: block;
  padding-left: 12px;
}

.index-news .share-item .share-item-content .intro {
  font-weight: 400;
  font-size: 12px;
  line-height: 17px;
  color: #848484;
  height: 17px;
  -webkit-line-clamp: 1;
  padding-top: 8px;
  padding-left: 12px;
}

.index-news .share-item.active .share-item-content .name,
.index-news .share-item.active .share-item-date .day {
  color: #4385ff;
}

/**新闻分类-样式 */
.index-news .header .nav li.active {
  font-size: 30px;
  color: #000000;
  position: relative;
}

.index-news .index-news-main-box p {
  width: 0;
  height: 0;
  /* 隐藏三角 */
  display: block;
  border: solid;
  border-width: 0 15px 14px;
  border-color: transparent transparent #4385ff transparent;
  position: absolute;
  left: 45px;
  top: 42px;
  z-index: 10;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

/**动态效果-hover悬停 */
.index-news .header .nav li.active::after {
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

.index-news .header .nav li.active:hover::after {
  -moz-animation: 0.5s triangle_Lh linear both;
  -o-animation: 0.5s triangle_Lh linear both;
  animation: 0.5s triangle_Lh linear both;
  -webkit-animation: 0.5s triangle_Lh linear both;
}

/**三角左侧滑入 */
@-webkit-keyframes triangle_Lh {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-moz-keyframes triangle_Lh {
  from {
    opacity: 0;
    -moz-transform: translateX(-100px);
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
}
@-o-keyframes triangle_Lh {
  from {
    opacity: 0;
    -o-transform: translateX(-100px);
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes triangle_Lh {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    -moz-transform: translateX(-100px);
    -o-transform: translateX(-100px);
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}

.index-news .header .nav li {
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

.index-news .header .nav li:hover {
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  color: #000000;
}

.index-news .brand-info .brand-info-main:hover .name,
.index-news .brand-info .brand-info-main:hover .day {
  color: #4385ff;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

.index-news .list-answer .answer-item:hover .name {
  color: #4385ff;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

.index-news .list-share .share-item:hover .name,
.index-news .list-share .share-item:hover .day {
  color: #4385ff;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

.index-news .brand-item:hover .brand-item-content .name,
.index-news .brand-item:hover .brand-item-date .day {
  color: #4385ff;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

.index-news .list-brand .brand-info img {
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  /*width: 400px;*/
  /*height: 217px;*/
}

.index-news .list-brand .brand-info img:hover {
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

/**按钮-hover */
.index-news .answer-item.answer-question .answer-submit {
  /* position: relative;
    overflow: hidden;
    width: 102px;
    height: 34px;
    line-height: 34px;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
    color: #fff;
    background-color: #e83820;  */
  width: 108px;
  height: 41px;
  line-height: 41px;
  background: #4283fb;
  border: 1px solid #ececec;
  border-radius: 0 4px 4px 0;
  font-weight: 400;
  font-size: 16px;
  color: #ececec;
  text-align: center;
  display: inline-block;
}

.index-news .answer-item.answer-question .answer-submit:hover {
  background: #72a4ff;
}
